.carousel {
  position: relative;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-bottom: var(--space-4);
}
.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-base);
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--ink-muted);
  box-shadow: var(--shadow-close);
}
.carousel-button[data-direction='previous'] {
  transform: rotate(180deg);
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: var(--space-6);
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
  padding: var(--space-6) var(--space-4);
  text-align: center;
}
.carousel-quote {
  max-width: 48rem;
  margin: var(--space-0) auto var(--space-8);
  color: var(--ink-muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}
.carousel-name {
  margin-bottom: var(--space-1);
  font: var(--text-2xl)/var(--leading-tight) var(--font-heading);
}
.carousel-role {
  color: var(--ink-faint);
  font-size: var(--text-sm);
}
@media (min-width: 48rem) {
  .carousel-controls {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }
  .carousel-button {
    pointer-events: auto;
  }
  .carousel-slide {
    padding: var(--space-8) var(--space-16);
  }
}
